home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / pa32v315.zip / KNOWNBUG.TXT < prev    next >
Text File  |  1997-05-02  |  3KB  |  71 lines

  1. Known bugs and limitations in Project Analyzer 3.1.x
  2.  
  3. Please report any new bugs to vbshop@netgate.net.
  4.  
  5.  
  6. ===========
  7. Limitations
  8. ===========
  9.  
  10. - In the 16-bit version, the number of certain things (like vars/consts
  11.   and references) is limited to 32767. If you encounter this problem,
  12.   use the 32-bit version
  13. - The size of variable, constant and procedure names is restricted to 64
  14.   characters to save some memory. Longer names are truncated.
  15.  
  16. ==================
  17. Known misbehaviour
  18. ==================
  19.  
  20. - Long lines don't word wrap on some report types
  21. - Reports to .wri files look ugly
  22. - Long procedural call tree reports (All procedures) can hang the computer
  23. - "Sub [Dis]ConnectAddIn" is never "dead" even if your app is not an add-in
  24. - In the hypertext window, letters in DefType statements may be 
  25.   mistaken for one-letter variable names
  26. - Constant references in the (declarations) section are not interpreted. 
  27.   This may cause the following code to show WM_USER as a "dead" const:
  28.   Global Const WM_USER = xyz
  29.   Global Const WM_HELLO = WM_USER + 1
  30. - ReDim MyTable(N) inside a procedure may be interpreted 
  31.   as a new local array, even if it's a dynamic global array. 
  32.   This is not a problem with module-level arrays.
  33.  
  34. - MyClass.MyProperty = 987      works OK (MyProperty Let), but
  35.   MyClass(123).MyProperty = 987 doesn't (thinks it's MyProperty Get)
  36.                                 Problem with subscript.
  37.  
  38. - In the hypertext window, if you have two different definitions with the
  39.   same name (e.g. Form1.MyVar and Form2.MyVar), the program may
  40.   highlight the both in red when the other one is highlighted
  41.  
  42.  
  43. =======================
  44. Unsupported VB 4.0 code
  45. =======================
  46.  
  47. - Compiler directives (#if xyz then)
  48. - Line continuation character "_"
  49.  
  50. ========================
  51. Deficiencies in FRX view
  52. ========================
  53.  
  54. - Shows only graphical data.
  55.   Textual data (like the List property of a ListBox) is not shown.
  56. - Doesn't understand if one control has more than 1 picture
  57.   => Shows only one picture
  58. - Understands the following properties: .Picture, .Icon and .MouseIcon
  59. - Can't handle SSCommand.Picture. Seems to me that these pictures
  60.   are stored differently
  61.  
  62. ================
  63. For best results
  64. ================
  65.  
  66. - Always declare your local variables (use Option Explicit)
  67. - Always save your files as text (VB 3.0)
  68. - Use MS Word as RTF editor
  69. - Wait for the analysis to end completely (it has 2 phases)
  70.  
  71.